home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / rexxsyslib_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  1KB  |  55 lines

  1. #ifndef  CLIB_REXXSYSLIB_PROTOS_H
  2. #define  CLIB_REXXSYSLIB_PROTOS_H
  3.  
  4. /*
  5. **    $VER: rexxsyslib_protos.h 36.3 (19.2.91)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. /*--- functions in V33 or higher (Release 1.2) ---*/
  15. #ifndef  EXEC_TYPES_H
  16. #include <exec/types.h>
  17. #endif
  18. #ifndef  REXX_RXSLIB_H
  19. #include <rexx/rxslib.h>
  20. #endif
  21. #ifndef  REXX_REXXIO_H
  22. #include <rexx/rexxio.h>
  23. #endif
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28.  
  29. UBYTE *CreateArgstring( UBYTE *string, unsigned long length );
  30. void DeleteArgstring( UBYTE *argstring );
  31. ULONG LengthArgstring( UBYTE *argstring );
  32. struct RexxMsg *CreateRexxMsg( struct MsgPort *port, UBYTE *extension,
  33.     UBYTE *host );
  34. void DeleteRexxMsg( struct RexxMsg *packet );
  35. void ClearRexxMsg( struct RexxMsg *msgptr, unsigned long count );
  36. BOOL FillRexxMsg( struct RexxMsg *msgptr, unsigned long count,
  37.     unsigned long mask );
  38. BOOL IsRexxMsg( struct RexxMsg *msgptr );
  39.  
  40.  
  41. void LockRexxBase( unsigned long resource );
  42. void UnlockRexxBase( unsigned long resource );
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47.  
  48. #ifdef STORMPRAGMAS
  49. #ifndef _INCLUDE_PRAGMA_REXXSYSLIB_LIB_H
  50. #include <pragma/rexxsyslib_lib.h>
  51. #endif
  52. #endif
  53.  
  54. #endif     /* CLIB_REXXSYSLIB_PROTOS_H */
  55.